/* English (primary) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

/* Persian (fallback) */
@font-face {
  font-family: 'YekanBakh';
  src: url('/static/fonts/YEKAN_BAKH_EN_04_REGULAR.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'YekanBakh';
  src: url('/static/fonts/YEKAN_BAKH_EN_06_BOLD.TTF') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Global default: English first, Persian fallback */
html, body {
  font-family: "Poppins", "YekanBakh", sans-serif !important;
  font-weight: 400;
}

/* Everything inherits… */
* { font-family: inherit !important; }

/* …except Font Awesome */
.fa, .fas, .fa-solid, .far, .fa-regular, .fab, .fa-brands {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}
.fa-regular { font-weight: 400 !important; }
.fa-brands  { font-family: "Font Awesome 6 Brands" !important; font-weight: 400 !important; }
