/* pre-vc.eu — typography tokens
   One family, three jobs: Montserrat carries display/heading/body,
   IBM Plex Mono is the instrument panel (labels, stage tags, coordinates,
   data readouts). */

:root {
  --font-display: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

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

  /* fluid type scale (matches the concept board's clamp() usage) */
  --text-display: clamp(2.4rem, 5.8vw, 4.7rem);
  --text-h1: clamp(1.6rem, 3vw, 2.5rem);
  --text-h2: clamp(1.5rem, 3.1vw, 2.35rem);
  --text-h3: 1.55rem;
  --text-lead: clamp(1.02rem, 1.6vw, 1.22rem);
  --text-body: 1.02rem;
  --text-small: 0.92rem;
  --text-label: 0.72rem;
  --text-mono: 0.82rem;

  --leading-tight: 1.02;
  --leading-snug: 1.18;
  --leading-body: 1.62;
  --leading-mono: 1.35;

  --tracking-tight: -0.035em;
  --tracking-snug: -0.02em;
  --tracking-label: 0.16em;
  --tracking-mono: 0.02em;
}
