/* Meidar — Typography tokens
   Hebrew-first sans system. Sizes run a touch larger than a Latin scale because
   Hebrew has no ascenders/descenders to aid reading at small sizes. */

:root {
  /* Type scale (rem @ 16px root) */
  --text-xs:   0.75rem;   /* 12 — captions, eyebrow labels */
  --text-sm:   0.875rem;  /* 14 — secondary UI, meta */
  --text-base: 1rem;      /* 16 — body */
  --text-md:   1.125rem;  /* 18 — lead body */
  --text-lg:   1.375rem;  /* 22 — card titles */
  --text-xl:   1.75rem;   /* 28 — section subheads */
  --text-2xl:  2.25rem;   /* 36 — H2 */
  --text-3xl:  2.875rem;  /* 46 — H1 */
  --text-4xl:  3.75rem;   /* 60 — display */
  --text-5xl:  4.75rem;   /* 76 — hero display */

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

  /* Line heights */
  --leading-tight:   1.1;
  --leading-snug:    1.25;
  --leading-normal:  1.5;
  --leading-relaxed: 1.7;

  /* Letter spacing — Hebrew display benefits from slight negative tracking */
  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.08em;  /* eyebrow / all-caps Latin labels */

  /* Semantic roles */
  --font-display: var(--font-display);
  --font-body: var(--font-sans);
}
