/* ============================================================
   Digital Strategy — TYPOGRAPHY TOKENS
   Display: Archivo (heavy, all-caps headline punch)
   Sans:    Montserrat (UI, body, wide-tracked labels)
   Mono:    JetBrains Mono (stats, data, telemetry)
   ============================================================ */

:root {
  /* ---- Families ---- */
  --font-display: 'Archivo', 'Arial Narrow', sans-serif;
  --font-sans:    'Montserrat', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', 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 */

  /* ---- Fluid display sizes (headlines, all-caps) ---- */
  --fs-display-xl: clamp(3.25rem, 6vw, 5.5rem); /* @kind font */
  --fs-display-lg: clamp(2.5rem, 4.5vw, 4rem); /* @kind font */
  --fs-display-md: clamp(1.9rem, 3vw, 2.75rem); /* @kind font */
  --fs-display-sm: clamp(1.5rem, 2.2vw, 2rem); /* @kind font */

  /* ---- Heading / title sizes ---- */
  --fs-h1: 2rem; /* @kind font */
  --fs-h2: 1.5rem; /* @kind font */
  --fs-h3: 1.25rem; /* @kind font */
  --fs-h4: 1.0625rem; /* @kind font */

  /* ---- Body & UI ---- */
  --fs-lead:  1.1875rem; /* @kind font */
  --fs-body:  1rem; /* @kind font */
  --fs-sm:    0.875rem; /* @kind font */
  --fs-xs:    0.75rem; /* @kind font */
  --fs-eyebrow: 0.8125rem; /* @kind font */

  /* ---- Line heights ---- */
  --lh-tight:  1.02; /* @kind other */
  --lh-snug:   1.18; /* @kind other */
  --lh-normal: 1.55; /* @kind other */
  --lh-relaxed:1.7; /* @kind other */

  /* ---- Letter spacing ---- */
  --ls-display: -0.02em; /* @kind other */
  --ls-tight:   -0.01em; /* @kind other */
  --ls-normal:  0; /* @kind other */
  --ls-wide:    0.04em; /* @kind other */
  --ls-wider:   0.12em; /* @kind other */
  --ls-widest:  0.22em; /* @kind other */
}
