/* Ubuntu — the brand face, self-hosted. The site serves the same family from
   /fonts, the backend renders badges with it, and this app already ships it to
   the embed widgets; the app UI was the only surface still on the system stack,
   and not by choice: the old stack listed 'Ubuntu' fifth as the Linux fallback,
   so Macs got SF and Windows got Segoe UI.

   Only 400/500/700 are served. Ubuntu has no 600 — see the fontWeight override
   in tailwind.config.js, which maps semibold onto Medium rather than letting
   every semibold in the app resolve upward to Bold.

   Built from the Ubuntu 0.83 TTFs in public/embed/fonts rather than from
   Google's webfont files, because Google's build has the tnum feature stripped
   and this app is full of numbers. */
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    local('Ubuntu Regular'),
    local('Ubuntu-Regular'),
    url('/fonts/ubuntu-v12-latin-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src:
    local('Ubuntu Medium'),
    local('Ubuntu-Medium'),
    url('/fonts/ubuntu-v12-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src:
    local('Ubuntu Bold'),
    local('Ubuntu-Bold'),
    url('/fonts/ubuntu-v12-latin-700.woff2') format('woff2');
}
