/* DrTime typography.
   Persian/Arabic keep the original self-hosted Vazirmatn appearance.
   Only English uses the enterprise system stack. */

@font-face {
  font-family: "Vazirmatn";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../vendor/fonts/vazirmatn/Vazirmatn-RD[wght].6cf898b9069a.woff2") format("woff2");
}

:root {
  --font-en: "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-fa: "Vazirmatn", Tahoma, "Segoe UI", Arial, sans-serif;
  --font-ar: "Vazirmatn", Tahoma, "Segoe UI", Arial, sans-serif;
  --font-sans: var(--font-en);
}

html[lang^="fa"] { --font-sans: var(--font-fa); }
html[lang^="ar"] { --font-sans: var(--font-ar); }
html[lang^="en"] { --font-sans: var(--font-en); }

html[dir="rtl"]:not([lang]) { --font-sans: var(--font-fa); }
html[dir="ltr"]:not([lang]) { --font-sans: var(--font-en); }

html,
body,
button,
input,
select,
textarea,
optgroup {
  font-family: var(--font-sans) !important;
}

html[dir="rtl"] {
  letter-spacing: 0;
}

html[dir="rtl"] body {
  line-height: 1.75;
}
