/* IBM Plex Sans Arabic — extracted out of home.css and critical-home.min.css
   so the @font-face declarations don't trigger network requests during the
   render-blocking CSS parse. This file is loaded asynchronously (print-media
   swap) from _LayoutHeader.cshtml; first paint uses the Tahoma/Segoe-UI fallback,
   IBM Plex swaps in once available.
   PSI "Network dependency tree" reduction: removes 4 woff2 fetches (~4 s critical
   path on lab-throttled mobile).

   font-display: swap — was 'optional', but optional's ~100 ms window combined
   with the async fonts.css load meant fresh visits permanently rendered Tahoma
   until a manual refresh warmed the woff2 cache. swap guarantees the font
   always applies (brief Tahoma → Plex FOUT on first paint).
*/
@font-face {
    font-family: 'IBMPlexSansArabic-Thin';
    src: url('../fonts/IBMPlexSansArabic-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBMPlexSansArabic-ExtraLight';
    src: url('../fonts/IBMPlexSansArabic-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBMPlexSansArabic-Light';
    src: url('../fonts/IBMPlexSansArabic-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBMPlexSansArabic-Regular';
    src: url('../fonts/IBMPlexSansArabic-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBMPlexSansArabic-Medium';
    src: url('../fonts/IBMPlexSansArabic-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBMPlexSansArabic-SemiBold';
    src: url('../fonts/IBMPlexSansArabic-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBMPlexSansArabic-Bold';
    src: url('../fonts/IBMPlexSansArabic-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
