I'm trying to use google web fonts open sans with bootstrap.
I'm loading the fonts with:
I have a site-specific.css that loads after bootstrap. I've tried:
.body { font-family: 'Open Sans', sans-serif;}
and also:
.bootstrap-container *,
.bootstrap-container body,
.bootstrap-container td,
.bootstrap-container tr,
.bootstrap-container div,
.bootstrap-container p,
.bootstrap-container form,
.bootstrap-container input,
.bootstrap-container select,
.bootstrap-container textarea,
.bootstrap-container font {
font-family: 'Open Sans', sans-serif;
}
But it seems that no matter what class selector I use, the fonts don't render and the bootstrap fonts are inherited instead. I'm not sure how to debug this.