/* Brett Lovins — typography tokens
   Manrope: headings, display, wordmark, buttons. Inter: body, UI, forms. */
:root {
  --font-display: "Manrope", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

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

  /* Scale */
  --text-display: 56px;   --leading-display: 1.08;
  --text-h1: 42px;        --leading-h1: 1.12;
  --text-h2: 32px;        --leading-h2: 1.18;
  --text-h3: 24px;        --leading-h3: 1.25;
  --text-h4: 19px;        --leading-h4: 1.3;
  --text-body-lg: 18px;   --leading-body-lg: 1.6;
  --text-body-md: 16px;   --leading-body-md: 1.6;
  --text-body-sm: 14px;   --leading-body-sm: 1.5;
  --text-caption: 13px;   --leading-caption: 1.4;

  /* Tracking */
  --tracking-display: -0.02em;
  --tracking-heading: -0.01em;
  --tracking-caps: 0.08em; /* eyebrow labels, uppercase */
}
