/*
 * ZH-3710 workaround.
 *
 * The Longines MC68 bundle injects its own @font-face rule from lon-livewatch.js,
 * but that rule is missing the `src:` property, so the browser parses it down to a
 * sourceless declaration and "Longines Sans Text" never loads -- the banner falls
 * back to the generic sans-serif. This file supplies the rule the bundle intended.
 *
 * Reported to Longines. Drop this file and its <link> in event-wk.html.twig once a
 * corrected bundle ships.
 */
@font-face {
    font-family: 'Longines Sans Text';
    src: url("fonts/LonginesSansText-Regular.woff2") format("woff2"),
         url("fonts/LonginesSansText-Regular.woff") format("woff");
    font-weight: normal;
    font-display: swap;
}
