/* ==================================================================
   AI API Gateway — self-hosted Persian fonts
   ==================================================================
   Backs the "Persian Fonts" group in the Theme Settings drawer
   (public/views/full-panel.php -> data-aiapi-font="vazir|yekan|sahel"),
   applied via the --aiapi-font-family overrides in
   public/assets/css/panel.css. Self-hosted (no Google Fonts / other
   external CDN calls) so the panel keeps rendering the chosen Persian
   font even on connections where foreign font CDNs are slow or
   blocked — the same reasoning already applied to every other asset
   in this plugin.

   Only the Regular (400) and Bold (700) weights are shipped, since
   the panel UI never requests any other weight; normal CSS font
   matching maps nearby weights (e.g. 600) to whichever of the two
   files is closest.

   Licenses (also copied alongside the font files themselves):
     - Vazirmatn  — SIL Open Font License 1.1
                    (public/assets/fonts/vazirmatn/LICENSE.txt)
                    Source: https://github.com/rastikerdar/vazirmatn
     - Sahel      — SIL Open Font License 1.1
                    (public/assets/fonts/sahel/LICENSE.txt)
                    Source: https://github.com/rastikerdar/sahel-font
     - Yekan Bakh — No authoritative license file could be located for
                    this mirror (public/assets/fonts/yekan-bakh/NOTE.txt
                    has the details) — verify the terms yourself before
                    shipping this build commercially.
   ================================================================== */

@font-face {
	font-family: 'Vazirmatn';
	src: url('../fonts/vazirmatn/Vazirmatn-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Vazirmatn';
	src: url('../fonts/vazirmatn/Vazirmatn-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Sahel';
	src: url('../fonts/sahel/Sahel-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Sahel';
	src: url('../fonts/sahel/Sahel-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Yekan Bakh';
	src: url('../fonts/yekan-bakh/YekanBakh-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Yekan Bakh';
	src: url('../fonts/yekan-bakh/YekanBakh-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}