/* Vazirmatn Font Loading - VetPro */

/* Import Vazirmatn from Google Fonts - This is the correct way */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100..900&display=swap');

/* Base font application */
html {
  font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
}

body {
  font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
  font-display: swap;
}

/* Font loading states */
html.fonts-loaded {
  font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
}

html.fonts-failed {
  font-family: 'Tahoma', 'Arial', sans-serif;
}

/* Ensure all elements inherit the font */
* {
  font-family: inherit;
}

/* Font weight utilities */
.font-thin {
  font-weight: 100;
}
.font-extralight {
  font-weight: 200;
}
.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-black {
  font-weight: 900;
}
