/* Glas-Bender Visuals — Typography tokens */

:root {
  /* ---- Families ---- */
  --font-display: 'Montserrat', system-ui, sans-serif;  /* wordmark, headings */
  --font-body: 'Work Sans', system-ui, sans-serif;       /* copy, UI */
  --font-mono: 'Space Mono', ui-monospace, monospace;    /* metadata, EXIF */

  /* ---- Weights ---- */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;
  --weight-black: 900;

  /* ---- Type scale (1.250 major-third, display-tightened) ---- */
  --text-xs:  0.75rem;   /* 12 — metadata, captions */
  --text-sm:  0.875rem;  /* 14 — labels, fine print */
  --text-base: 1rem;     /* 16 — body */
  --text-lg:  1.125rem;  /* 18 — lead body */
  --text-xl:  1.5rem;    /* 24 — small headings */
  --text-2xl: 2rem;      /* 32 — section headings */
  --text-3xl: 2.75rem;   /* 44 — page titles */
  --text-4xl: 3.75rem;   /* 60 — display */
  --text-5xl: 5.5rem;    /* 88 — hero / wordmark */

  /* ---- Line heights ---- */
  --leading-tight: 1.05;
  --leading-snug: 1.18;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* ---- Letter-spacing ---- */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.08em;     /* eyebrows, small caps */
  --tracking-wider: 0.22em;    /* VISUALS-style wordmark tracking */
}
