The question is pretty straightforward.
I use Bootstrap, where all the bold things are CSSized in
tag {
font-weight: bold;
}
but I use Open Sans
(as so many people), where font-weight: 400
is not enough and font-weight: 700
is much better.
Is there a way I tell my CSS that bold=700
and not 400 (which is I reckon the default value) ?
=====
EDIT
I must have been unclear.
In CSS only, without modifying Bootstrap sources, there are many locations (the whole list here) where bootstrap says (Eg.)
h6 {
font-weight: bold
}
I'd like the web-browser to understand that in this case bold
should be equivalent to font-weight: 700
instead of font-weight: 400
as per default without rewriting all the rules (Eg.)
h6 {
font-weight: 700
}
The answer can be that it is not currently possible, but Google hasn't provided me any answer yet.