/* ─────────────────────────────────────────────
   TYPOGRAPHY
   Single family (Noto Sans KR) for a clean, minimal
   voice. 단위 기준: 글자 크기는 사용자 선호에
   반응해야 하므로 rem (루트는 100% 유지, % 트릭 금지).
   이름 옆 주석 = 루트 16px 기준 환산 px값.
   토큰은 실제 사용처가 생길 때만 추가한다.
   ───────────────────────────────────────────── */
:root {
  /* Family */
  --font-sans: "Noto Sans KR", ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Apple SD Gothic Neo", "Pretendard Variable", sans-serif;

  /* Font sizes */
  --text-xs:   0.75rem;   /* 12 */
  --text-sm:   0.875rem;  /* 14 */
  --text-base: 1rem;      /* 16 */
  --text-lg:   1.125rem;  /* 18 */
  --text-2xl:  1.5rem;    /* 24 */
  --text-3xl:  1.875rem;  /* 30 */
  --text-4xl:  2.25rem;   /* 36 */

  /* Weights */
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;

  /* Line heights */
  --leading-normal:  1.5;
  --leading-relaxed: 1.7;  /* 장문 본문(문서 사이트 prose) */

  /* Letter spacing */
  --tracking-tight:  -0.02em;
  --tracking-snug:   -0.01em;
  --tracking-wide:   0.04em;
}
