/* Open Squash — Typography tokens
 * Headline: Kanit (800/extrabold, tight). Subhead: Hanken Grotesk (Bergen Sans sub).
 * Body: Georama (rounded, friendly). Locations: Kanit 100/Thin.
 */
:root {
  /* ---- Families ---- */
  --font-headline: 'Kanit', system-ui, sans-serif;          /* display / H1-H3, UPPERCASE */
  --font-subhead:  'Hanken Grotesk', system-ui, sans-serif; /* eyebrows, labels, UI */
  --font-body:     'Georama', system-ui, sans-serif;        /* paragraphs, long copy */
  --font-location: 'Kanit', system-ui, sans-serif;          /* location lockups (weight 100) */

  /* ---- Weights ---- */
  --weight-headline: 800;
  --weight-headline-mid: 600;
  --weight-subhead: 600;
  --weight-body: 400;
  --weight-body-strong: 600;
  --weight-location: 100;

  /* ---- Type scale (display uses Kanit, tight leading + tracking) ---- */
  --text-display:   clamp(3rem, 7vw, 5.5rem);  /* hero */
  --text-h1:        clamp(2.25rem, 4.5vw, 3.5rem);
  --text-h2:        clamp(1.75rem, 3vw, 2.5rem);
  --text-h3:        1.5rem;
  --text-eyebrow:   0.8125rem; /* subhead label */
  --text-lg:        1.25rem;
  --text-base:      1rem;
  --text-sm:        0.875rem;
  --text-xs:        0.75rem;

  /* ---- Leading ---- */
  --leading-display: 0.92;
  --leading-tight:   1.05;
  --leading-snug:    1.25;
  --leading-body:    1.6;

  /* ---- Tracking ---- */
  --tracking-display: -0.01em;
  --tracking-eyebrow: 0.14em;  /* uppercase labels are spaced */
  --tracking-body: 0;
}
