/* UNSEEN — Typography tokens
   Display:  Montserrat (heavy geometric wordmark + numerals)
   Heading:  Fraunces (high-contrast editorial serif — hero & section titles)
   Body/UI:  Archivo (neutral grotesque)
   Mono:     JetBrains Mono (audit / technical labels, eyebrows) */

:root {
  /* ---- Families ---- */
  --font-display: 'Montserrat', 'Arial Black', system-ui, sans-serif;
  --font-heading: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body:    'Archivo', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* ---- Weights ---- */
  --fw-regular:   400; /* @kind font */
  --fw-medium:    500; /* @kind font */
  --fw-semibold:  600; /* @kind font */
  --fw-bold:      700; /* @kind font */
  --fw-extrabold: 800; /* @kind font */
  --fw-black:     900; /* @kind font */

  /* ---- Type scale (px) ---- */
  --fs-display:   clamp(3.5rem, 8vw, 7rem); /* @kind font */   /* hero wordmark scale */
  --fs-h1:        3rem; /* @kind font */     /* 48 */
  --fs-h2:        2.25rem; /* @kind font */  /* 36 */
  --fs-h3:        1.75rem; /* @kind font */  /* 28 */
  --fs-h4:        1.375rem; /* @kind font */ /* 22 */
  --fs-lg:        1.125rem; /* @kind font */ /* 18 */
  --fs-body:      1rem; /* @kind font */     /* 16 */
  --fs-sm:        0.875rem; /* @kind font */ /* 14 */
  --fs-xs:        0.75rem; /* @kind font */  /* 12 */
  --fs-eyebrow:   0.8125rem; /* @kind font *//* 13 mono label */

  /* ---- Line heights ---- */
  --lh-tight:     1.02; /* @kind font */  /* display */
  --lh-snug:      1.15; /* @kind font */  /* headings */
  --lh-normal:    1.5; /* @kind font */   /* body */
  --lh-relaxed:   1.65; /* @kind font */

  /* ---- Letter spacing ---- */
  --ls-display:   -0.03em; /* @kind font */ /* tight, like the wordmark */
  --ls-heading:   -0.015em; /* @kind font */
  --ls-body:      0; /* @kind font */
  --ls-eyebrow:   0.22em; /* @kind font */   /* wide tracked mono eyebrow */
  --ls-caps:      0.08em; /* @kind font */
}
