when I add fallback fonts to my CSS code, my website no longer shows the opentype features I have activated. Why is this?
Opentype features work with: font-family: "Ogg-Roman";
Opentype features don't work: font-family: "Ogg-Roman", Georgia, serif;
Here is my website: https://cpdesignery.com/
@font-face {
font-family: "Ogg-Roman", Georgia, serif;
src: url('https://cpdesignery.com/wp-content/uploads/2019/01/Ogg-Roman.eot');
src: url('https://cpdesignery.com/wp-content/uploads/2019/01/Ogg-Roman.eot?#iefix') format('embedded-opentype'),
url('https://cpdesignery.com/wp-content/uploads/2019/01/Ogg-Roman.woff2') format('woff2'),
url('https://cpdesignery.com/wp-content/uploads/2019/01/Ogg-Roman.woff') format('woff');
}
h1, h2, h3, h4 {
-webkit-font-feature-settings: "ss01" on, "ss03" on;
-moz-font-feature-settings: "ss01" on, "ss03" on;
-ms-font-feature-settings: "ss01" on, "ss03" on;
font-feature-settings: "ss01" on, "ss03" on;
}