/* Hawky — typography tokens
   Brand guide specifies "Mont Bold" (Fontfabric). Mont is a commercial face
   not shippable here; Montserrat (Google Fonts) is the closest geometric
   match and is used throughout. Swap --font-brand when Mont files arrive. */
:root {
  --font-brand: 'Montserrat', 'Mont', -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Montserrat', -apple-system, 'Segoe UI', sans-serif;

  /* Weights */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-heavy: 800;   /* wordmark / display weight */

  /* Scale */
  --text-xs: 12px;
  --text-sm: 13px;
  --text-base: 15px;
  --text-md: 17px;
  --text-lg: 20px;
  --text-xl: 24px;
  --text-2xl: 30px;
  --text-3xl: 38px;
  --text-4xl: 48px;

  /* Line heights */
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.5;

  /* Tracking — the brand sets display type tight, tagline wide */
  --tracking-display: -0.01em;
  --tracking-caps: 0.08em;   /* uppercase labels / tagline style */
}
