/* ===========================================================================
   Genesis · Typography tokens
   Display = General Sans (bold, tight tracking)  ·  Body = DM Sans
   Code = JetBrains Mono.  Never swap display & body.
   =========================================================================== */

:root {
  /* ---- Families -------------------------------------------------------- */
  --font-display: "General Sans", "DM Sans", system-ui, sans-serif;
  --font-body:    "DM Sans", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* ---- Type scale (px) ------------------------------------------------- */
  --text-display:  72px;   /* hero display */
  --text-headline: 60px;   /* page headline */
  --text-section:  32px;   /* section heading */
  --text-subhead:  24px;   /* subhead */
  --text-body:     15px;   /* default body / UI */
  --text-small:    13px;   /* small text */
  --text-caption:  12px;   /* caption, chip text */
  --text-overline: 11px;   /* overline, uppercase */

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

  /* ---- Line heights ---------------------------------------------------- */
  --leading-tight:  1.05;   /* display / headline */
  --leading-snug:   1.2;    /* headings */
  --leading-normal: 1.5;    /* body */

  /* ---- Letter spacing -------------------------------------------------- */
  --tracking-display: -0.04em;
  --tracking-heading: -0.03em;
  --tracking-normal:  0;
  --tracking-overline: 0.08em;
}
