I am trying to get Google Webfonts to work in IE8 and nothing seems to work. The fonts are loading alright, but instead of loading the appropriate font for italics and bolds, IE8 is winging it by creating faux-weights.
I already followed the instructions found in this very helpful article: http://www.smashingmagazine.com/2012/07/11/avoiding-faux-weights-styles-google-web-fonts/ but to no avail. Italics, bolds and bols-italics are still not working properly.
Any ideas on how to fix this?
This is how I'm calling the fonts by the way:
<!--[if lte IE 8]>
<link href='http://fonts.googleapis.com/css?family=Lora:400' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Lora:400italic' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Lora:700' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Lora:700italic' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:800' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:800italic' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic' rel='stylesheet' type='text/css' />
<![endif]-->