Styles in general contain a lot of information, font face, size and weight are just some of them.
You can use proc template to modify an existing (or for the truly optimistic create a style from scratch) to make a customized version.
This is an example of getting the listing of a style. Replace Meadow with the style of interest.
proc template;
source styles.meadow;
run;
By default the listing of the description will appear in the log.
You would use something similar to:
proc template;
define style mymeadow;
parent style.meadow;
style BodyText from NormalText /
fontsize = 19pt
fontfamily = "<sans-serif>, <MTsans-serif>, sans-serif"
color = black;
end;
run;
to replace the fontsize of bodytext to size 19 from the default 9 (in the case of the meadow style as installed on my computer).
Find the blocks of text in your style with font sizes and copy them to code as above and then change as desired.
Your style may have the specific font inherited from another style which would appear in a Parent= statement in the generated source.
You may need to look in that style as well and copy the style block(s) of interest.
Or use style overrides in Proc Print, Report or Tabulate.
Changing a style will affect any output using that style and you could make it the default style for your system if desired.
... View more