/* ============================================================
   TYPOGRAPHY — Montserrat throughout
   Display: Bold Italic. Body/UI: Regular/Medium.
   Labels/captions: SemiBold, UPPERCASE, letter-spaced.
   ============================================================ */
:root {
  /* Family */
  --font-sans: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif; /* @kind font */
  --font-display: 'BiomeW04-Wide', 'Montserrat', sans-serif; /* @kind font */

  /* Weights */
  --fw-regular:  400; /* @kind font */
  --fw-medium:   500; /* @kind font */
  --fw-semibold: 600; /* @kind font */
  --fw-bold:     700; /* @kind font */

  /* Type scale (1.25 major-third-ish, tuned) */
  --fs-display:  clamp(3rem, 6vw, 4.5rem); /* @kind font */
  --fs-h1:       3rem; /* @kind font */
  --fs-h2:       2.25rem; /* @kind font */
  --fs-h3:       1.75rem; /* @kind font */
  --fs-h4:       1.375rem; /* @kind font */
  --fs-lead:     1.25rem; /* @kind font */
  --fs-body:     1rem; /* @kind font */
  --fs-small:    0.875rem; /* @kind font */
  --fs-label:    0.75rem; /* @kind font */
  --fs-micro:    0.6875rem; /* @kind font */

  /* Line heights */
  --lh-display:  1.04; /* @kind font */
  --lh-heading:  1.12; /* @kind font */
  --lh-body:     1.6; /* @kind font */
  --lh-tight:    1.3; /* @kind font */

  /* Letter spacing */
  --ls-display:  -0.02em; /* @kind font */
  --ls-heading:  -0.01em; /* @kind font */
  --ls-body:     0; /* @kind font */
  --ls-label:    0.18em; /* @kind font */
  --ls-label-lg: 0.24em; /* @kind font */

  /* Display style = Montserrat Bold Italic */
  --display-style: italic; /* @kind other */
}
