/* ============================================================
   Mobiocasión · Typography tokens
   Display: "Baloo 2" (chunky rounded — echoes the logo wordmark)
   Text/UI: "Nunito" (humanist rounded sans, highly legible)
   NOTE: the real logo is set in a custom rounded sans; these are
   the nearest Google Fonts substitutes. See readme.
   ============================================================ */
:root {
  --font-display: "Baloo 2", "Nunito", system-ui, sans-serif;
  --font-sans: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Type scale (root = 16px) */
  --text-2xs: 0.6875rem;  /* 11 */
  --text-xs:  0.75rem;    /* 12 */
  --text-sm:  0.8125rem;  /* 13 */
  --text-base:0.9375rem;  /* 15 — body default */
  --text-md:  1rem;       /* 16 */
  --text-lg:  1.125rem;   /* 18 */
  --text-xl:  1.375rem;   /* 22 */
  --text-2xl: 1.6875rem;  /* 27 */
  --text-3xl: 2.0625rem;  /* 33 */
  --text-4xl: 2.5rem;     /* 40 */
  --text-5xl: 3.25rem;    /* 52 */
  --text-6xl: 4rem;       /* 64 */

  /* Weights */
  --weight-regular: 400;
  --weight-medium:  600;
  --weight-semibold:700;
  --weight-bold:    800;
  --weight-black:   900;

  /* Line heights */
  --leading-none:    1;
  --leading-tight:   1.12;
  --leading-snug:    1.28;
  --leading-normal:  1.5;
  --leading-relaxed: 1.65;

  /* Letter spacing */
  --tracking-tighter: -0.03em;
  --tracking-tight:   -0.015em;
  --tracking-normal:  0;
  --tracking-wide:    0.04em;
  --tracking-eyebrow: 0.09em;  /* uppercase section labels */
}
