/* Tangerine Books — typography tokens (design-system source of truth).
 *
 * Warm Four (v3): Space Mono is the "receipt layer" — everything except
 * display type. Hobo BT is the display face for screen titles, card
 * headings, hero numerals, and the wordmark. TAN Nimbus is retired from
 * layouts (#132 deleted --tb-font-accent); the woff2 stays on disk only
 * for a possible future logo lockup (see fonts.css). All faces are
 * self-hosted (fonts.css) — no font CDN (ADR-0006).
 */

:root {
  /* Font families */
  --tb-font-body: "Space Mono", ui-monospace, "SFMono-Regular", "Menlo",
    "Consolas", monospace;
  --tb-font-display: "Hobo BT", "Kavoon", "Space Mono", cursive;

  /* Weights */
  --tb-weight-regular: 400;
  --tb-weight-bold: 700;

  /* Type scale (mobile-first, px-anchored per the handoff) */
  --tb-size-hero: 48px;        /* gross-margin hero numeral (64px desktop, set in app.css) */
  --tb-size-h1: 24px;          /* screen title (Hobo, 24–28px) */
  --tb-size-h2: 20px;          /* card heading (Hobo) */
  --tb-size-body: 13px;        /* mono body copy (12–13px) */
  --tb-size-small: 12px;       /* meta / sub-labels */
  --tb-size-kicker: 11px;      /* uppercase kickers, labels, chips */

  /* Line heights */
  --tb-leading-tight: 1.1;
  --tb-leading-body: 1.55;

  /* Letter spacing for the uppercase labels / kickers */
  --tb-tracking-kicker: 0.15em;
  --tb-tracking-wordmark: 0.22em;
}
