/**
 * Self-hosted Work Sans (variable font).
 *
 * 1. Download the variable font file from:
 *    https://fonts.google.com/specimen/Work+Sans
 *    (choose "Download family", then use WorkSans[wght].ttf,
 *    or convert to .woff2 at https://cloudconvert.com/ttf-to-woff2
 *    for a much smaller file size)
 * 2. Place the .woff2 file in this same /fonts/ folder as
 *    "WorkSans-Variable.woff2"
 * 3. That's it — functions.php already enqueues this file.
 */

@font-face {
    font-family: 'Work Sans';
    src: url('WorkSans-Variable.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/*
 * ---- ALTERNATIVE: quick start without downloading anything ----
 * If you'd rather not self-host yet, comment out the @font-face above
 * and instead add this line directly in your theme's header.php,
 * inside the <head> tag:
 *
 * <link rel="preconnect" href="https://fonts.googleapis.com">
 * <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
 * <link href="https://fonts.googleapis.com/css2?family=Work+Sans:wght@100..900&display=swap" rel="stylesheet">
 *
 * Self-hosting (the default setup above) is recommended for GDPR/privacy
 * compliance in the EU and slightly faster load times.
 */
