/* Nduw's Family — typography tokens */
:root {
  /* Hank Round: the brand's single typeface family (bubbly, rounded).
     Light for large display, Regular for body, Bold/Black for emphasis. */
  --font-brand: "Hank Round", "Baloo 2", "Comic Sans MS", system-ui, sans-serif;
  --font-body: var(--font-brand);

  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-bold: 700;
  --font-weight-black: 900;

  /* Type scale */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 28px;
  --text-3xl: 36px;
  --text-4xl: 48px;
  --text-5xl: 64px;

  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.55;

  --tracking-wide: 0.08em;  /* small-caps labels, eyebrows */
}
