/* =====================================================
   INDROX — TYPOGRAPHY TOKENS
   Two voices: Archivo for brand expression (industrial,
   DIN-adjacent), JetBrains Mono for measured truth (data,
   coordinates, references). Archivo Narrow for taglines.
   ===================================================== */
:root {
  /* ---- Families ---- */
  --font-sans:   'Archivo', system-ui, -apple-system, sans-serif;
  --font-narrow: 'Archivo Narrow', 'Archivo', sans-serif;
  --font-mono:   'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* Semantic family aliases */
  --font-display: var(--font-sans);   /* big headlines, wordmark */
  --font-body:    var(--font-sans);   /* UI + running text */
  --font-data:    var(--font-mono);   /* metrics, refs, labels */

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

  /* ---- Type scale ---- */
  --fs-display: clamp(56px, 9vw, 132px); /* @kind font */
  --fs-h1:      clamp(40px, 5.5vw, 72px); /* @kind font */
  --fs-h2:      clamp(28px, 3.2vw, 44px); /* @kind font */
  --fs-h3:      24px; /* @kind font */
  --fs-h4:      20px; /* @kind font */
  --fs-body-lg: 18px; /* @kind font */
  --fs-body:    16px; /* @kind font */
  --fs-small:   13px; /* @kind font */
  --fs-label:   11px; /* @kind font */
  --fs-micro:   10px; /* @kind font */

  /* ---- Line heights (unitless) ---- */
  --lh-display: 0.95; /* @kind font */
  --lh-heading: 1.1; /* @kind font */
  --lh-snug:    1.3; /* @kind font */
  --lh-body:    1.55; /* @kind font */
  --lh-data:    1.7; /* @kind font */

  /* ---- Tracking ---- */
  --tr-display: -0.03em; /* @kind font */
  --tr-heading: -0.02em; /* @kind font */
  --tr-tight:   -0.01em; /* @kind font */
  --tr-normal:  0; /* @kind font */
  --tr-label:   0.18em; /* @kind font */
  --tr-label-wide: 0.3em; /* @kind font */
}
