Почему не работают шрифты?
в CSS прописано так:
@font-face {
font-family: 'Open Sans';
src: url('http://greenday.cf/wp-content/themes/storefront-child/assets/fonts/opensans-webfont.woff2') format('woff2'),
url('http://greenday.cf/wp-content/themes/storefront-child/assets/fonts/opensans-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Roboto';
src: url('http://greenday.cf/wp-content/themes/storefront-child/assets/fonts/roboto-webfont.woff2') format('woff2'),
url('http://greenday.cf/wp-content/themes/storefront-child/assets/fonts/roboto-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
body{font-family: 'Open Sans';}
h1, h2, h3, h4, h5, h6, blockquote{font-family: 'Roboto';}
Однако это почему-то не работает! Как исправить и заставить работать?