* 3) find the relative font in that font-family. */
final FObj parent = fobj.effectiveParent(context);
if (parent == null) {
return Font.Weight.DARK;
}
final Font.Weight inheritedWeight = parent.traitFontWeight(
context);
return inheritedWeight.nextHeaviest();
}
case LIGHTER: {
/* See comments regarding this general algorithm in BOLDER case