/* A Doggie Do — Typography
   Cinzel = display seal caps. Nunito = everything readable. Caveat = whimsy. */
:root {
  --font-display: 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-ui: 'Nunito', -apple-system, 'Segoe UI', system-ui, sans-serif;
  --font-accent: 'Caveat', 'Comic Sans MS', cursive;

  /* Type scale (1.25 major-third-ish, tuned) */
  --text-2xs: 0.6875rem;  /* 11 */
  --text-xs:  0.75rem;    /* 12 */
  --text-sm:  0.875rem;   /* 14 */
  --text-base:1rem;       /* 16 */
  --text-md:  1.125rem;   /* 18 */
  --text-lg:  1.375rem;   /* 22 */
  --text-xl:  1.75rem;    /* 28 */
  --text-2xl: 2.25rem;    /* 36 */
  --text-3xl: 3rem;       /* 48 */
  --text-4xl: 3.9rem;     /* 62 */
  --text-5xl: 5.25rem;    /* 84 */

  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extra: 800;
  --weight-black: 900;

  --leading-tight: 1.05;
  --leading-snug: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  --tracking-seal: 0.14em;   /* Cinzel caps like the logo */
  --tracking-wide: 0.06em;
  --tracking-normal: 0;
  --tracking-tight: -0.01em;
}
