/* 
 * Solution pour wkhtmltopdf : Encodage Base64 des polices
 * Basé sur la discussion Stack Overflow : https://stackoverflow.com/questions/6721295/google-web-fonts-and-pdf-generation-from-html-with-wkhtmltopdf
 */

/* Pour l'instant, utilisons les polices système comme fallback */
@font-face {
    font-family: 'Edu NSW ACT Cursive';
    src: local('Edu NSW ACT Cursive'), local('French Script MT'), cursive;
    font-display: swap;
}

@font-face {
    font-family: 'Times New Roman';
    src: local('Times New Roman'), serif;
    font-display: swap;
}

@font-face {
    font-family: 'Lucida Handwriting';
    src: local('Lucida Handwriting'), cursive;
    font-display: swap;
}

@font-face {
    font-family: 'Arial Rounded MT Bold';
    src: local('Arial Rounded MT Bold'), local('Arial'), sans-serif;
    font-display: swap;
}

@font-face {
    font-family: 'Georgia';
    src: local('Georgia'), serif;
    font-display: swap;
}

@font-face {
    font-family: 'Arial Narrow';
    src: local('Arial Narrow'), local('Arial'), sans-serif;
    font-display: swap;
}

@font-face {
    font-family: 'Tahoma';
    src: local('Tahoma'), sans-serif;
    font-display: swap;
}

/* 
 * NOTE: Pour une solution complète avec Base64, il faudrait :
 * 1. Convertir chaque fichier TTF en Base64
 * 2. Utiliser la syntaxe : src: url(data:font/truetype;charset=utf-8;base64,AAEAAAATAQA...) format('truetype');
 * 
 * Exemple de structure pour Base64 :
 * @font-face {
 *     font-family: 'Edu NSW ACT Cursive';
 *     src: url(data:font/truetype;charset=utf-8;base64,AAEAAAATAQA...) format('truetype');
 *     font-display: swap;
 * }
 */
