/* ============================================================
   Deleg · Typography tokens
   Inter throughout. Tight tracking on display, looser as size drops.
   Scale read from the brand guide:
   H1 Display  Inter ExtraBold  −1.5px tracking
   H2 Heading  Inter Bold       −0.5px tracking
   H3 Subtitle Inter SemiBold    0px
   Body        Inter Regular    16px / 0
   Label UI    Inter SemiBold   12px (often UPPERCASE + tracked)
   ============================================================ */
:root {
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-wordmark: "Poppins", var(--font-sans); /* logo lockups only */

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

  /* Type scale (px) */
  --fs-display: 72px;   /* manifesto / hero statement */
  --fs-h1: 48px;
  --fs-h2: 34px;
  --fs-h3: 24px;
  --fs-title: 20px;
  --fs-lg: 18px;
  --fs-body: 16px;
  --fs-sm: 14px;
  --fs-xs: 13px;
  --fs-caption: 12px;
  --fs-micro: 11px;

  /* Line heights */
  --lh-tight: 1.05; /* @kind other */
  --lh-snug: 1.2; /* @kind other */
  --lh-normal: 1.5; /* @kind other */
  --lh-relaxed: 1.65; /* @kind other */

  /* Tracking */
  --tracking-display: -1.5px;
  --tracking-h1: -1px;
  --tracking-h2: -0.5px;
  --tracking-normal: 0;
  --tracking-label: 1.5px;  /* uppercase eyebrows / labels */
  --tracking-wide: 2px;
}
