Hello
Maybe try auto instead.
* {
-webkit-font-smoothing: auto !important;
}
If you wish you can experiment with the various smoothing values....
auto - Let the browser decide (Uses subpixel anti-aliasing when available; this is the default)
none - Turn font smoothing off; display text with jagged sharp edges.
antialiased - Smooth the font on the level of the pixel, as opposed to the subpixel. Switching from subpixel rendering to anti-aliasing for light text on dark backgrounds makes it look lighter.
subpixel-antialiased - On most non-retina displays, this will give the sharpest text.
This is the only difference between these 2 templates with the fonts you have rendered.
Ciaran