/* ============================================================
   Rainbow International School — Type tokens
   Headings: Baloo 2 (rounded, warm, friendly — school-appropriate
             without being childish; strong bold weights for display)
   Body:     Karla (humanist grotesk, clean & highly legible at
             small sizes for dense parent-portal / dashboard UI)
   Arabic:   Baloo Bhaijaan 2 (rounded companion to Baloo 2, same
             foundry family) for headings, Almarai for Arabic body.
   ============================================================ */

:root {
  --font-display: "Baloo 2", "Baloo Bhaijaan 2", ui-rounded, sans-serif;
  --font-body: "Karla", "Almarai", -apple-system, sans-serif;
  --font-arabic-display: "Baloo Bhaijaan 2", "Baloo 2", sans-serif;
  --font-arabic-body: "Almarai", "Karla", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Type scale — 1.25 ratio, tuned by hand for slide/UI use */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-md:   1.125rem;  /* 18px */
  --text-lg:   1.375rem;  /* 22px */
  --text-xl:   1.75rem;   /* 28px */
  --text-2xl:  2.25rem;   /* 36px */
  --text-3xl:  2.75rem;   /* 44px */
  --text-4xl:  3.5rem;    /* 56px */
  --text-5xl:  4.5rem;    /* 72px */

  --leading-tight:  1.15;
  --leading-snug:   1.3;
  --leading-normal: 1.55;
  --leading-loose:  1.75;

  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;
  --weight-extrabold: 800;

  --tracking-tight: -0.01em;
  --tracking-normal: 0;
  --tracking-wide:  0.04em;
}
