/*
 * Self-hosted fonts used by Canva-derived templates (Professional Creator,
 * etc). All three are SIL Open Font License 1.1 and bundled as latin
 * variable woff2 so the headless PDF worker captures with the intended
 * type. font-display: block prevents fallback-font flash in the capture.
 */

/* Big display sans — used for the creator name headline. */
@font-face {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 100 900;
    font-display: block;
    src: url('/fonts/WorkSans-latin.woff2') format('woff2');
}

/* Body / UI sans — labels, stats, footer, paragraph copy. */
@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 300 700;
    font-display: block;
    src: url('/fonts/Quicksand-latin.woff2') format('woff2');
}

/* Serif for section-tag labels ("About me", "Statistics"). Alice has a
 * subtle italic-feel even in its upright weight which is what the Canva
 * source uses; we don't ship a true italic. */
@font-face {
    font-family: 'Alice';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url('/fonts/Alice-latin.woff2') format('woff2');
}
