As with all Swing Components, there are UIManager properties that you can set to change their default look. In your case...
Font f = new Font(...);
UIManager.put("MenuBar.font", f);
UIManager.put("MenuItem.font", f);
...would probably get the job done. Keep in mind that...