/* Font Awesome font-path fix
   The bundled all.min.css expects webfonts under /webfonts/.
   In this project the font files are located under /webfonts/web/.
   Loading this AFTER all.min.css ensures icons render on all routes.
*/

@font-face{
  font-family:"Font Awesome 6 Free";
  font-style:normal;
  font-weight:900;
  font-display:block;
  src:url("../webfonts/web/fa-solid-900.woff2") format("woff2"),
      url("../webfonts/web/fa-solid-900.ttf") format("truetype");
}

@font-face{
  font-family:"Font Awesome 6 Free";
  font-style:normal;
  font-weight:400;
  font-display:block;
  src:url("../webfonts/web/fa-regular-400.woff2") format("woff2"),
      url("../webfonts/web/fa-regular-400.ttf") format("truetype");
}

@font-face{
  font-family:"Font Awesome 6 Brands";
  font-style:normal;
  font-weight:400;
  font-display:block;
  src:url("../webfonts/web/fa-brands-400.woff2") format("woff2"),
      url("../webfonts/web/fa-brands-400.ttf") format("truetype");
}
