/* Roboto — self-hosted, replacing the Google Fonts request in brand-head.ejs.
   Same approach as the Innova LicenseManager dashboard (src/index.css), whose
   woff files these are. One family carries the scale via weight:
     regular 400 · medium 500 · bold 600–700
   `font-display: swap` keeps first paint sober if the face is still loading. */
@font-face {
  font-family: "Roboto";
  src: url("roboto-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("roboto-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("roboto-bold.woff") format("woff");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}
