/* Typography — Jost (wordmark), Cormorant Garamond (literary headings),
   Inter (UI), JetBrains Mono (eyebrows, labels, measurements). */
:root {
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-display: Jost, 'Century Gothic', 'Avenir Next', sans-serif;
  --font-serif-display: var(--font-serif);

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;

  /* scale */
  --text-xs: 11px;
  --text-sm: 12px;
  --text-base: 15px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 28px;
  --text-3xl: 36px;
  --text-4xl: 46px;
  --text-5xl: 60px;

  --leading-tight: 1.15;
  --leading-snug: 1.35;
  --leading-body: 1.6;
  --leading-loose: 1.75;

  --track-tight: -0.015em;
  --track-normal: 0; /* @kind other */
  --track-eyebrow: 0.14em;
  --track-label: 0.12em;
  --track-wordmark: 0.34em;
  --track-wide: 0.22em;

  --measure: 680px;
  --measure-narrow: 52ch;
}
