We need to use web fonts to match our design. Our corporate font is Open Sans, freely available through Google web fonts.
I'm using the WP CSS editor to append to the theme's stylesheet:
https://turbovote.wordpress.com/wp-admin/themes.php?page=editcss
If I include an @import line, it's stripped entirely:
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,600,300,700);
If I include the @font-face rules like so:
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 700;
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(http://themes.googleusercontent.com/static/fonts/opensans/v6/k3k702ZOKiLJc3WVjuplzKRDOzjiPcYnFooOUGCOsRk.woff) format('woff');
}
the URLs are stripped, rendering them useless:
@font-face {
font-family:'Open Sans';
font-style:normal;
font-weight:700;
src:local('Open Sans Bold'), local('OpenSans-Bold'), format("woff");
}
I paid $30 for custom CSS — I expect it to work for everything, not some subset of CSS.
The blog I need help with is blog.turbovote.org.