/*
 * Self-hosted Mona Sans font-face declarations. Lives in /public so it ships
 * as a plain static asset (no Vite HTML/JSON plugin interaction) and the
 * browser can discover all three weights before any JS executes.
 */
@font-face {
  font-family: "Mona Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/MonaSans-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Mona Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/MonaSans-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Mona Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/MonaSans-Bold.woff2") format("woff2");
}
