/**
 * Self-hosted / system font stack — replaces broken Next.js font URLs & Google Fonts CDN.
 *
 * Optional: place inter-latin.woff2 in assets/fonts/ and uncomment @font-face below.
 */

:root {
  --font-inter: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

html,
body,
.editor-styles-wrapper {
  font-family: var(--font-inter);
}

/*
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
}
:root {
  --font-inter: Inter, "Segoe UI", system-ui, sans-serif;
}
*/
