@font-face {
  font-family: "Something Something";
  src: url("https://frog.house/fonts/something-something-Regular.woff2") format("woff2"),
       url("https://frog.house/fonts/something-something-Regular.woff") format("woff"),
       url("https://frog.house/fonts/something-something-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Topple";
  src: url("https://frog.house/fonts/topple.woff2") format("woff2"),
       url("https://frog.house/fonts/topple.woff") format("woff"),
       url("https://frog.house/fonts/topple.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Use Something Something as the secondary font */
  --secondary-font: "Something Something", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --primary-font: "Something Something", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Optional: set Topple as a display/primary font if your theme uses it */
  /* --primary-font: "Topple", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
}