/*
Exaples:
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

Use relative url (with ../../) if you want to save custom font files into module folder called custom_fonts located in modules/supertinymcepro/custom_fonts/

@font-face {
    font-family: "Avenir LT Pro 95 Black";
    src:url('../../custom_fonts/Avenir LT Pro 95 Black.woff2')format("woff2"),
        url('../../custom_fonts/Avenir LT Pro 95 Black.woff')format("woff"),
        url('../../custom_fonts/Avenir LT Pro 95 Black.svg')format("svg");
    font-display:swap;
    font-weight:900;
}
*/