/* Deferred-load font declarations.
   Loaded via rel=preload + onload swap in App.razor so the icon font is
   off the critical path. font-display: swap renders fallback glyphs
   immediately and swaps to the real font when the woff2 arrives. */

@font-face {
    font-family: "Material Symbols";
    src: url("../fonts/MaterialSymbolsOutlined.woff2") format("woff2 supports variations"),
         url("../fonts/MaterialSymbolsOutlined.woff2") format("woff2-variations");
    font-style: normal;
    font-weight: 100 700;
    font-display: swap;
}
