/*
  Self-hosted Poppins. site.css has specified `font-family: "Poppins", ...`
  since the scaffold, but nothing ever shipped the font - every screenshot in
  this project has silently rendered in the browser's system-UI fallback.
  Artifact previews can't load webfonts at all, which is what surfaced the gap;
  the real app had it all along.

  Self-hosted rather than a Google Fonts <link> because the Content-Security-Policy
  a production deployment of an internal tool should carry has no reason to
  allow a third-party font host, and self-hosting removes a runtime dependency
  and a request to a domain outside the organization's control.

  Poppins is SIL Open Font License 1.1 - free to bundle; see wwwroot/fonts/OFL.txt.
*/
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
