/* =========================================================================
   Alice Designs — Typography tokens
   Cormorant (high-contrast serif) for display & editorial moments.
   Figtree (humanist sans) for body, UI, labels.
   JetBrains Mono for code, indices, technical meta.
   ========================================================================= */

:root {
  /* Families */
  --font-serif: 'Cormorant', 'Times New Roman', Georgia, serif;
  --font-sans:  'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:  'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  /* Aliases by role */
  --font-display: var(--font-serif);
  --font-body:    var(--font-sans);
  --font-ui:      var(--font-sans);
  --font-code:    var(--font-mono);

  /* Type scale — fluid display, fixed UI ------------------------------ */
  --text-display: clamp(3.5rem, 8vw, 7rem);  /* hero serif */
  --text-h1: 3.5rem;
  --text-h2: 2.5rem;
  --text-h3: 1.75rem;
  --text-h4: 1.3125rem;
  --text-lead: 1.375rem;   /* intro paragraph */
  --text-lg: 1.0625rem;
  --text-base: 0.875rem;   /* 14px body copy */
  --text-sm: 0.8125rem;    /* 13px */
  --text-xs: 0.75rem;      /* 12px */
  --text-2xs: 0.6875rem;   /* eyebrow / mono labels */

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

  /* Line heights */
  --leading-tight: 1.04;   /* big serif headings */
  --leading-snug: 1.2;
  --leading-normal: 1.55;  /* body */
  --leading-relaxed: 1.7;

  /* Letter spacing */
  --tracking-tight: -0.035em;   /* display serif headings */
  --tracking-normal: 0;
  --tracking-wide: 0.04em;
  --tracking-eyebrow: 0.18em;  /* uppercase mono eyebrows */
}
