/* Repoints the three FontAwesome @font-face rules from all.min.css at subset webfonts
   containing only the 165 icons this codebase actually uses (fa-solid 74->11 KB).
   MUST load after all.min.css — later @font-face wins for the same family/weight/style.
   Regenerate with $CLAUDE_JOB_DIR/tmp/fa_build.py after adding new fa-* icons. */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.subset.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.subset.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.subset.woff2") format("woff2");
}
