/* Arabic-locale font override. Loaded by base-generic.html only when
 * the active language uses the Arabic script (currently just `ar`).
 *
 * Pairs Noto Sans Arabic for Arabic codepoints with the existing
 * Roboto for any Latin content on the same page — brand names like
 * "Comparekink" stay in their familiar Latin face, while Arabic body
 * text picks up Noto Sans Arabic via the font-family priority below.
 *
 * The same TTFs are staged into the screenshot test environment via
 * `script_fonts` on `playwright_postgresql_py_test`, so the gallery
 * shows the production rendering rather than missing-glyph squares. */

@font-face {
  font-family: "Noto Sans Arabic";
  src: url("fonts/NotoSansArabic-Regular.22e156b807f3.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans Arabic";
  src: url("fonts/NotoSansArabic-Bold.227e57411293.ttf") format("truetype");
  font-weight: bold;
  font-display: swap;
}

* {
  font-family: "Noto Sans Arabic", "Roboto", sans-serif;
}
