/* FMU typography tokens.
   Anton = display only. Archivo = headings/UI. Inter = body. IBM Plex Mono = spec. */
:root {
  /* ---- Families ---- */
  --font-display: "Anton", "Archivo", sans-serif;
  --font-heading: "Archivo", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono:    "IBM Plex Mono", "Roboto Mono", monospace;

  /* ---- Type scale (16px base · 1.25 ratio, display amplified) ---- */
  --text-display: 5rem;     /* Anton hero headline / giant stats */
  --text-h1:      3rem;     /* page title */
  --text-h2:      2.25rem;  /* section heading */
  --text-h3:      1.5rem;   /* sub-section */
  --text-h4:      1.25rem;  /* card title */
  --text-lg:      1.125rem; /* lead paragraph */
  --text-base:    1rem;     /* body */
  --text-sm:      0.875rem; /* captions, labels */
  --text-xs:      0.75rem;  /* mono spec footnotes, legal */

  /* ---- Line heights ---- */
  --leading-display: 1.05;
  --leading-heading: 1.25;
  --leading-body:    1.6;

  /* ---- Tracking ---- */
  --tracking-display: -0.5px; /* Anton display */
  --tracking-caps:    1px;    /* Archivo all-caps labels */

  /* ---- Weights ---- */
  --weight-body:    400;
  --weight-medium:  500;
  --weight-heading: 700;
  --weight-black:   800;
}
