I tried doing
UIManager.getDefaults().put(\"TitledBorder.font\", Font.BOLD); contentPanel.setBorder(new TitledBorder(\"Client Downloader\"));
Set the font when you create the border instead. Something like:
new TitledBorder(new LineBorder(Color.WHITE, 1), "Client Downloader", TitledBorder.LEFT, TitledBorder.TOP, Font.BOLD);