Use Facelet templates (as in <ui:include> and/or <ui:composition>) if you want to split main page layout fragments into reuseable templates. E.g. header, menu, footer, etc. An example can be found in my answer on this question: How to include another XHTML in XHTML using JSF 2.0 Facelets?
Use Facelet tag files if you want to have a reuseable group of components in order to prevent/minimize code duplication. E.g. a group of label+input+message components. The major difference with composite components is that the output of a Facelet tag file does not represent a single UIComponent. An example can be found in my answer on this question: How to make a grid of JSF composite component?
Use Composite Components if you want to create a single and reuseable custom UIComponent with a single responsibility using pure XML. Such a composite component usually consists of a bunch of closely related components and/or HTML and which get physically rendered as single component. E.g. a component which shows a rating in stars based on a given integer value. An example can be found in our Composite Component wiki page.
Use a Custom Component whenever the functionality cannot be achieved with Facelet tag files or composite components, because of the lack of support in the standard/available set of components. E.g. an <input type="file">. An example can be found in this blog: Uploading files with JSF 2.0 and Servlet 3.0.
The performance concern is negligible. The choice should be made based on the concrete functional requiremments and the final degree of abstraction, reusability and maintainability of the implementation.