/* The Continental Collective — Typography tokens */
:root {
  /* ---- Families ---- */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-accent: 'Spectral', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'DM Mono', ui-monospace, monospace;

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

  /* ---- Display scale (Cormorant, generous tracking) ---- */
  --fs-display-xl: 4rem;    /* hero */
  --fs-display-lg: 3rem;    /* cover wordmark */
  --fs-display-md: 2rem;    /* section titles */
  --fs-display-sm: 1.5rem;  /* card titles */

  /* ---- Body scale (DM Sans) ---- */
  --fs-lg: 1.1rem;
  --fs-base: 0.95rem;
  --fs-sm: 0.85rem;
  --fs-xs: 0.75rem;
  --fs-2xs: 0.65rem; /* eyebrows / labels */

  /* ---- Line heights ---- */
  --lh-tight: 1.15; /* @kind font */
  --lh-snug: 1.4;   /* @kind font */
  --lh-body: 1.7;   /* @kind font */
  --lh-loose: 1.9;  /* @kind font */

  /* ---- Letter spacing (a signature of the brand) ---- */
  --ls-wordmark: 0.22em;
  --ls-display: 0.08em;
  --ls-eyebrow: 0.3em;    /* uppercase labels */
  --ls-label: 0.2em;
  --ls-body: 0; /* @kind font */
}
