/* ============================================================
   CONFIDE — TYPOGRAPHY TOKENS
   ============================================================ */
:root {
  /* Families */
  --font-sans:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-heading: 'Inter Tight', 'Inter', system-ui, sans-serif; /* display / headings — tight tracking */
  --font-serif:   'Newsreader', Georgia, 'Times New Roman', serif; /* editorial quotes / Standard-Bearer */
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

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

  /* Type scale (16px base) */
  --text-xs:    0.75rem;   /* 12 */
  --text-sm:    0.8125rem; /* 13 */
  --text-caption:0.875rem; /* 14 */
  --text-base:  1rem;      /* 16 */
  --text-md:    1.125rem;  /* 18 — lead body */
  --text-lg:    1.375rem;  /* 22 */
  --text-xl:    1.75rem;   /* 28 */
  --text-2xl:   2.25rem;   /* 36 */
  --text-3xl:   3rem;      /* 48 */
  --text-4xl:   4rem;      /* 64 */
  --text-5xl:   5rem;      /* 80 — editorial display */

  /* Line heights */
  --lh-tight:   1.05; /* @kind font */
  --lh-snug:    1.18; /* @kind font */
  --lh-heading: 1.25; /* @kind font */
  --lh-body:    1.65; /* @kind font */
  --lh-relaxed: 1.75; /* @kind font */

  /* Letter spacing */
  --ls-tight:   -0.02em; /* @kind font */
  --ls-snug:    -0.01em; /* @kind font */
  --ls-normal:  0; /* @kind font */
  --ls-wide:    0.04em; /* @kind font */
  --ls-overline:0.14em; /* @kind font */ /* uppercase mono/sans labels */

  /* Semantic roles — display/headings use Inter Tight (tight tracking) */
  --font-display: var(--fw-bold) var(--text-5xl)/var(--lh-tight) var(--font-heading);
  --font-h1:      var(--fw-bold) var(--text-4xl)/var(--lh-snug) var(--font-heading);
  --font-h2:      var(--fw-bold) var(--text-3xl)/var(--lh-snug) var(--font-heading);
  --font-h3:      var(--fw-semibold) var(--text-xl)/var(--lh-heading) var(--font-heading);
  --font-h4:      var(--fw-semibold) var(--text-lg)/var(--lh-heading) var(--font-heading);
  --font-lead:    var(--fw-regular) var(--text-md)/var(--lh-body) var(--font-sans);
  --font-body:    var(--fw-regular) var(--text-base)/var(--lh-body) var(--font-sans);
  --font-caption: var(--fw-regular) var(--text-caption)/var(--lh-body) var(--font-sans);
}

/* Overline / eyebrow label — small uppercase tracked mono */
.confide-overline {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
}
