/* Load the correct font file */
@font-face {
  font-family: "Chillax"; /* or "Switzer" if that’s the correct name */
  src: url("./fonts/fonts/NotoNastaliqUrdu-VariableFont_wght.ttf") format("opentype"); /* make sure this file exists */
  font-weight: 250;
  font-style: normal;
  font-display: swap;
}

/* Apply the font to your text elements, not to every element */
html, body {
  font-family: "Chillax", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Allow Font Awesome to use its own webfont */
.fa, .fa-solid, .fa-regular {
  font-family: "Font Awesome 6 Free" !important;
}
.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
}
.fa-solid { font-weight: 900; }
.fa-regular { font-weight: 400; }
