/* Socialize webfonts — bundled TTFs (no runtime fetch). Same stack as the app. */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("./BricolageGrotesque-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("./SpaceGrotesk.ttf") format("truetype");
  /* Variable font, 300–700 — declare the full range so all UI weights work. */
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("./SpaceMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("./SpaceMono-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
