/*!
 * SARC Notes — Local FontAwesome shim
 *
 * This file is a thin loader that pulls Font Awesome locally if installed
 * (place the official `webfonts/` folder + `all.min.css` from
 * https://use.fontawesome.com/releases/v6.4.0/fontawesome-free-6.4.0-web.zip
 * into assets/vendor/fontawesome/).
 *
 * If your hosting cannot run a build step, you can also simply replace this
 * file's contents with the official "all.min.css" content and copy the
 * webfonts/ folder alongside it.
 *
 * The official CDN is used as a graceful fallback ONLY when local files
 * are not yet uploaded. Once you add the local font files this fallback
 * never triggers (and your app stays fully offline-capable).
 */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

/* Self-host marker — if you later add local webfonts these rules win */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../webfonts/fa-solid-900.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/fa-regular-400.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/fa-brands-400.woff2") format("woff2");
}
