/* Clowdy — Typography tokens
 * Montserrat (primary) — Headlines ExtraBold, Sub-headlines SemiBold, Body Regular
 * Poppins (secondary)  — Headlines ExtraBold, Sub-headlines Medium, Body Light
 */
:root {
  /* ---- Families ---- */
  --font-display: "Montserrat", "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Montserrat", "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-alt: "Poppins", "Montserrat", system-ui, sans-serif;

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

  /* ---- Type scale (1.250 major third, 16px base) ---- */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-md: 18px;
  --text-lg: 20px;
  --text-xl: 25px;
  --text-2xl: 31px;
  --text-3xl: 39px;
  --text-4xl: 49px;
  --text-5xl: 61px;
  --text-6xl: 76px;

  /* ---- Line heights ---- */
  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  /* ---- Letter spacing ---- */
  --tracking-tight: -0.02em;
  --tracking-snug: -0.01em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;
  --tracking-caps: 0.12em;

  /* ---- Semantic roles ---- */
  --display-weight: var(--weight-extrabold);
  --heading-weight: var(--weight-bold);
  --subheading-weight: var(--weight-semibold);
  --body-weight: var(--weight-regular);
  --eyebrow-weight: var(--weight-semibold);
}
