/* /public/assets/vendor/fonts/inter.css */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  /* Since the original file was "regular", the weight is 400 */
  font-weight: 400; 
  font-display: swap;
  /* Using the absolute path from the root directory */
  src: url('/assets/vendor/fonts/inter.woff2') format('woff2');
}

/* Optional: Faux bold for tags like <strong> and <b> since we only have the regular weight loaded */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/vendor/fonts/inter.woff2') format('woff2');
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}