/* --- PART 1: DEFINE THE LOCAL FONT --- */
/* This is your original code */
@font-face {
  font-family: "Vazirmatn";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(Vazirmatn-Regular.woff2) format("woff2");
}

@font-face {
  font-family: "Vazirmatn";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(Vazirmatn-Medium.woff2) format("woff2");
}

@font-face {
  font-family: "Vazirmatn";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(Vazirmatn-Bold.woff2) format("woff2");
}


/* --- PART 2: APPLY THE FONT --- */
/* This is the missing piece */
body,
input,
button,
select,
textarea,
h1, h2, h3, h4, h5, h6 {
    font-family: 'Vazirmatn', sans-serif !important;
}
