Graphics and Fonts

Graphics has a setFont(Font font) method.

Font allows you to create the font that you want to use in its Constructors:
Font(String name, int style, int size)

Here is an example:
Font bigFont = new Font("Helvetica", Font.BOLD, 20);