/*
 * RTL overrides — Block 7 (RTL Rebuild).
 *
 * Enqueued conditionally in functions.php only when is_rtl() (Pashto/Dari),
 * per CLAUDE.md rule #8. Everything mirroring-related (corner brackets,
 * search icons, hero glow, download-card layout, etc.) already uses real
 * CSS logical properties throughout khf-theme's own compiled style.css, so
 * it doesn't need duplicating here — this file is specifically for the one
 * thing that ISN'T a mirroring concern: the font stack itself.
 *
 * Grounded verbatim in prototype-original/assets/css/style.css:446-450
 * (confirmed via direct inspection, not assumed) — adapted from that file's
 * `[dir="rtl"]` attribute selector to CLAUDE.md rule #8's own stated
 * convention of targeting the `rtl` body class instead (WordPress core adds
 * this class automatically via body_class() whenever is_rtl() is true).
 *
 * Before this file existed, every RTL fix made during Block 5 corrected
 * *mirroring* only — the actual font for Pashto/Dari text was still the
 * Latin-script stack (EB Garamond / Playfair Display), confirmed live via
 * getComputedStyle() on a real WPML-translated page before this fix landed.
 */
body.rtl,
body.rtl * {
	font-family: 'Vazirmatn', Georgia, serif !important;
	letter-spacing: 0 !important;
}
