/* ============================================================
   UCA theme — font layer.

   The original school site pulled Poppins and Rubik from
   fonts.googleapis.com. Google Fonts is a CDN and CDNs are blocked
   in-region, so the families are declared here and resolved from
   locally installed / vendored faces instead. Drop .woff2 files into
   ../fonts/ and add the matching @font-face blocks below to pin them.

   Arabic needs a face with Arabic glyphs — Poppins and Rubik have none,
   which is why the Arabic tree of the original site rendered in a
   fallback. Cairo/Tajawal are listed ahead of the Latin families for
   any RTL locale.
   ============================================================ */

:root {
    --uca-font-heading: "Poppins", "Cairo", "Tajawal", "Segoe UI", sans-serif;
    --uca-font-body: "Rubik", "Cairo", "Tajawal", "Segoe UI", sans-serif;
}

/* RTL locales lead with a face that actually carries Arabic glyphs. */
[dir="rtl"] {
    --uca-font-heading: "Cairo", "Tajawal", "Poppins", "Segoe UI", sans-serif;
    --uca-font-body: "Cairo", "Tajawal", "Rubik", "Segoe UI", sans-serif;
}
