/**
 * @file
 * Local font loading and fallback stacks for SVFutureTechAI.
 *
 * This file intentionally starts with local() sources so the theme has zero
 * external font requests. Place matching WOFF2 files in /fonts to enable
 * self-hosted fonts without changing the public font-family names.
 */

@font-face{
font-family:"SVFutureTech Sans";
src:local("Inter Variable"),local("Inter"),local("Segoe UI");
font-style:normal;
font-weight:100 900;
font-display:swap;
}

@font-face{
font-family:"SVFutureTech Mono";
src:local("JetBrains Mono"),local("SFMono-Regular"),local("Consolas");
font-style:normal;
font-weight:100 800;
font-display:swap;
}

html{
font-family:var(--font-family-sans,"Inter","Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif);
font-synthesis-weight:none;
text-rendering:optimizeLegibility;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
}

body,
button,
input,
select,
textarea{
font-family:var(--font-family-sans,"Inter","Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif);
}

pre,
code,
kbd,
samp{
font-family:var(--font-family-mono,"JetBrains Mono","SFMono-Regular",Consolas,"Liberation Mono",Menlo,monospace);
}
