/* Self-hosted brand fonts, matching --font-display/--font-ui in
   proposal/design-system/tokens.css ("PP Telegraf", "DM Sans"). tokens.css
   deliberately ships no @font-face - its own header says "pair with
   self-hosted fonts... in the full system" - and the full system's own copy
   (proposal/styles-live.css) does declare them, at the same already-public
   R2 URLs Detailed-Proposal serves them from. Not linking that file
   wholesale: its own resets set a hardcoded light background/text colour on
   body, which would fight this app's dark surface. Just the three
   @font-face rules, kept here rather than in the vendored file (its own
   header says not to edit it - edit upstream and re-sync instead). */

@font-face {
  font-family: "PP Telegraf";
  src: url("https://pub-0bbb92cb8b864441b9e912d6aa6abc2c.r2.dev/assets/fonts/PPTelegraf-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("https://pub-0bbb92cb8b864441b9e912d6aa6abc2c.r2.dev/assets/fonts/DMSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
