/* The brand typeface, in one place for every Cubee app.
 *
 * Linked into each project's wwwroot from CubeSol/Assets (see the README there), so
 * the same single <link rel="stylesheet" href="cubee-fonts.css"> works in a static
 * Blazor index.html, a Razor _Layout.cshtml and a Blazor App.razor alike.
 *
 * The @import keeps the Google Fonts URL in one place at the cost of one extra
 * request; Google's endpoint is what serves the right subsets, including the
 * latin-ext one Czech diacritics need. */
@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700;800&display=swap");

:root {
    /* Fallbacks are the stack the apps used before, so nothing shifts if Google
     * Fonts is blocked or slow. Keep in sync with CubeeFonts.Family (C#), which
     * feeds MudBlazor's typography. */
    --cubee-font-sans: 'Be Vietnam Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
